home *** CD-ROM | disk | FTP | other *** search
/ The Mac 1996 October / The Mac (October 1996).dmg / Web Authoring / parser10b3 Folder / Common Source / Parser.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-08  |  942 b   |  33 lines  |  [TEXT/CWIE]

  1. #pragma once
  2.  
  3. /*
  4.     HTML Form Parser 1.0b3
  5.     ----------------------
  6.  
  7.     BBEdit Extension by Niel M. Bornstein
  8.     Copyright © 1996 PLR Software, Inc.
  9.  
  10.     This program is free software; you can redistribute it and/or modify it
  11.     under the terms of the GNU General Public License as published by the
  12.     Free Software Foundation; either version 2 of the License, or (at your
  13.     option) any later version.
  14.  
  15.     This program is distributed in the hope that it will be useful, but
  16.     WITHOUT ANY WARRANTY; without even the implied warranty of
  17.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.     General Public License for more details.
  19.  
  20.     You should have received a copy of the GNU General Public License along
  21.     with this program; if not, write to the Free Software Foundation, Inc.,
  22.     675 Mass Ave, Cambridge, MA 02139, USA.
  23. */
  24.  
  25. typedef struct {
  26.     char c;
  27.     short x;
  28. } hextable;
  29.  
  30. void parser( Handle iBuffer, Handle oBuffer );
  31. char HexToChar( char *h );
  32.  
  33.